da0ebd6901b584c3cac3c8c3c2d1c1d8e2f07ec6,src/test/java/com/shazam/shazamcrest/MatcherAssertIgnoringPatternTest.java,MatcherAssertIgnoringPatternTest,ignoresByExactName,#,27
Before Change
@Test
public void ignoresByExactName() {
ParentBean expected = parent().childBean("value3", 123).childBean("value3", 123).build();
ParentBean actual = parent().childBean("value3", 123).childBean("value3a", 123).build();;
assertThat(actual, sameBeanAs(expected).ignoring(is("childString")));
After Change
@Test
public void ignoresByExactName() {
ParentBean expected = parent().childBean("value", 123).build();
ParentBean actual = parent().childBean("eulav", 123).build();
assertThat(actual, sameBeanAs(expected).ignoring(is("childString")));